Automate Your Invoices with n8n and Templated.io

invoice automation

Here’s the simple N8N automation I built that pulls invoice data from Google Sheets, creates a PDF using Templated.io, emails it to the client, and updates the sheet automatically.


🔗 Useful Links

Templated.io Sign-Up (50 Free Credits): Sign up

Download Workflow JSON:

Code Node JavaScript
// Get invoice number from the Google Sheet node
const invoiceNumber = $('Loop Over Items').first().json['Invoice number'];

for (const item of items) {
  if (item.binary && item.binary.data) {
    item.binary.data.fileName = `${invoiceNumber}.pdf`;
  }
}

return items;

⚙️ Tools Used

  • n8n
  • Templated.io
  • Google Sheets
  • Gmail / SMTP

🎥 Tutorial Video

Keep Reading

Category AI Posted on

How to Self-Host N8N in Just a Few Minutes (Beginner Guide)

If you're tired of paying for n8n Cloud or dealing with workflow limits, the best solution is to self-host n8n on your own VPS.The good news? You don’t need to be a developer or use complex Docker commands — with Hostinger’s new 1-click n8n setup, you can install n8n in just a few minutes. Self-hosting gives you: Full data control No workflow limitations Faster performance A cost of as low as $6/mont…
Continue reading
Category AI Posted on

Analyse Any Business Instantly Using N8N and BrowserAct

If you do cold outreach, you already know how much time it takes to understand a prospect’s business before sending a message. Most people skip this step and that’s why their outreach sounds generic, boring, and gets ignored. In this tutorial, I’ll share an automated workflow built using n8n, BrowserAct, and AI, which: Visits your prospect’s website Scrapes the full content Cleans the messy text Gene…
Continue reading